home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-10-11 | 899 b | 35 lines | [TEXT/MPS ] |
- // Copyright © 1995 Apple Computer. All rights reserved.
- // Release Version: $ 1.0d11 $
-
- #ifndef STARTERCMD_H
- #define STARTERCMD_H
-
- //==========================================================
- #ifndef FWCMD_H
- #include "FWCmd.h" // FW_CCommand
- #endif
-
- //==========================================================
- class FW_CLASS_ATTR CStarterPart;
-
- //==========================================================
- class FW_CLASS_ATTR CStarterCommand : public FW_CCommand
- {
- public:
- FW_DECLARE_CLASS
- CStarterCommand(Environment* ev,
- ODCommandID id,
- CStarterPart* part,
- FW_CFrame* frame);
- virtual ~CStarterCommand();
- protected:
- // overrides
- virtual void DoIt(Environment* ev);
- virtual void UndoIt(Environment* ev);
- virtual void RedoIt(Environment* ev);
- private:
- CStarterPart* fStarterPart;
- };
-
- //==========================================================
- #endif